home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Games Collection 1 / software vault.zip / software vault / CDR10 / LL_LAND.ZIP / LL_1.ASM < prev    next >
Assembly Source File  |  1993-05-11  |  1KB  |  35 lines

  1. ;; **********************************************************************
  2. ;;
  3. ;;                LL_1.ASM - Unchained Video Mode Routines
  4. ;;
  5. ;;                Copyright (C) 1993 Logical Gaming Systems
  6. ;;                           All Rights Reserved
  7. ;;
  8. ;; **********************************************************************
  9. ;; Routines:
  10. ;;
  11. ;; void ll_init(); Hard code LL_HOR for video page width.
  12. ;;
  13. ;; **********************************************************************
  14. .model huge,c
  15. include LL_M.INC                ;; Include all of our MACROS
  16. .data
  17.  
  18.     MM      equ     6
  19.     LL_HOR  equ     320
  20.  
  21.     LL_SHOW dw      0       ;; Offset of Show Page
  22.     LL_DRAW dw      16000   ;; Offset of Draw Page
  23.     LL_BACK dw      32000   ;; Offset of Back Page
  24.  
  25. .code
  26. include ll_init.inc             ;; ll_xinit()
  27. include ll_land.inc             ;; land_clr() land_put(buf,x,y,w,a);
  28. include ll_page.inc             ;; ll_page()
  29. include ll_key.inc              ;; ll_keyswap() ll_keyget() ll_keyhit()
  30. include ll_pal.inc              ;; Bunch of routines for pal manipulation.
  31. include ll_sin.inc              ;; ll_sin() ll_cos()
  32. include fractal.inc             ;; ll_data mesh data
  33.     end
  34.  
  35.